home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / progjrn / pj_7_2.arc / WINDEV2.ARC / WINAUX.RC < prev    next >
Text File  |  1988-12-11  |  1KB  |  48 lines

  1. /* 
  2.    Winaux resource file
  3.  
  4.    Written by Bill Hall
  5.    3665 Benton Street, #66
  6.    Santa Clara, CA 95051
  7. */
  8.  
  9. #include <style.h>
  10. #include "winaux.h"
  11.  
  12. /* strings */
  13. STRINGTABLE
  14. BEGIN
  15.     IDS_APPNAME,    "Winaux"
  16.     IDS_WINTITLE,    "Winaux Debugging Window"
  17.     IDS_ICONSTRING    "WAUX"
  18.     IDS_HWND        "hWnd"
  19.     IDS_X        "x"
  20.     IDS_Y        "y"
  21.     IDS_CX        "cx"
  22.     IDS_CY        "cy"
  23. END
  24.  
  25. Winaux MENU
  26. BEGIN
  27.     POPUP "&Options"
  28.         BEGIN
  29.             MENUITEM "&CRonLF", IDM_CRONLF, Checked
  30.         MENUITEM Separator
  31.         MENUITEM "&About...", IDM_ABOUT
  32.         END
  33. END
  34.  
  35. /* About dialog box descriptor */
  36. DT_ABOUT dialog 22,17,154,95
  37. STYLE WS_POPUP | WS_DLGFRAME
  38. BEGIN
  39.     CTEXT "Microsoft Windows"            -1,0,5,154,8
  40.     CTEXT "Winaux"                 -1,0,17,154,8
  41.     CTEXT "Version 1.1, 11/30/88"        -1,0,29,154,8
  42.     CTEXT "Created by"                -1,0,39,154,8
  43.     CTEXT "Bill Hall"                -1,0,49,154,8
  44.     CTEXT "3665 Benton Street, #66"        -1,0,57,154,8
  45.     CTEXT "Santa Clara, CA 95051"        -1,0,65,154,8
  46.     DEFPUSHBUTTON "&OK"                IDOK,61,77,32,14,WS_GROUP
  47. END
  48.